
html 呼叫php function 在 コバにゃんチャンネル Youtube 的最讚貼文

Search
... <看更多>
in this video we will learn how to call a php function on button click. we need to make a html simple form and ... ... <看更多>
#1. 從同一檔案中的HTML表單呼叫PHP函式? - 程式人生
【PHP】從同一檔案中的HTML表單呼叫PHP函式? ... <?php function test() { echo $_POST["user"]; //just an example of processing } ?>
在另一個PHP 檔案中,在 script 標籤內編寫一些jQuery。不要忘記將網頁與jQuery 源連結。在HTML 中,編寫一個帶有 onclick() 屬性的 button 標籤。將屬性 ...
#3. 前端html+js如何直接呼叫後端php函式? - 劇多
原則上前端html+js是不能直接呼叫後端php中的函式的並返回結果的。 菜農在學習網站程式設計後,就被此事困擾很長時間。 因為前端的js可以透過ajax技術 ...
#4. 怎麼在html中呼叫php中的function - 多學網
還有其他的模板引擎,比如一些cms,例如phpcms中就可以,可以直接在html模板中呼叫自定義的任何php方法。 2樓:匿名使用者. php是在伺服器解析的語言,輸出 ...
#5. How to call PHP function on the click of a Button
Calling a PHP function using the HTML button: Create an HTML form document which contains the HTML button. When the button is clicked the method ...
如在頁面a.html中用下面這句呼叫,可以將action=test的引數傳遞到b.php。 Javascript程式碼 複製程式碼程式碼如下:<script type=”text/javascript” src=”b ...
html 怎麼呼叫php的頁面. 2020-07-16 10:06:44. html本身是無法處理動態請求,要完成這個,一般是用javascript。在生成靜態網頁,可以根據資料庫id給html頁面生成一個相 ...
在HTML中利用js呼叫php的內容. html教程 · 發表 2018-10-05. 我們經常會看到很多網站的統計程式碼都是以js呼叫的形式顯示的,下面我們就來看看那如何例項的吧。 <?PHP
#9. 【javascript+php】【紀錄】寫php的時候需要傳值給javascript ...
在button裡面呼叫javascript的函式(function)並加上「」利用php的echo方式傳值給javascript的函式把php裡的變數傳過去。 在javacript的函式寫說要接一個變數,然後以彈跳式 ...
#10. How to call a PHP function on the click of a button - Stack ...
You cannot call PHP functions like clicking on a button from HTML. Because HTML is on the client side while PHP runs server side.
#11. javascript 與php 之間的互相呼叫 - icodding愛程式
echo "function ok(msg){alert(msg);}"; ?> <HTML> <HEAD> <TITLE> php呼叫js文件的好辦法</TITLE>
#12. 如何在js中呼叫php,如何在js中呼叫class的方法呼叫 - 好問答網
小結:在html裡用js 呼叫檔案的方式調php檔案,則php檔案的輸出將會被呼叫頁 ... 例子:在this.caller中呼叫類中的其他函式this.caller = function()}.
#13. How to call PHP function from JavaScript tutorial - Nathan ...
To send HTTP request from JavaScript to PHP server, you need to do the following: ... First, separate your PHP function in a different file. Let's ...
#14. How do I call PHP functions from HTML code? - Quora
If the php file is in the same folder then you can just pass the name of the file in the anchor tag before html button like <a href=”file.php”><button></button> ...
#15. html 呼叫php - Dcog
Result: Online PHP functions strlen strrev base64_encode base64_decode ... 種類,常常會使用到PHP echo html 的技巧,讓一個Js檔案函式中呼叫另一個Js檔案函式的 ...
#16. How to Call a PHP Function From JavaScript
To summarise, you can use AJAX when you want to call a PHP function from JavaScript or run PHP code on some data generated inside browsers. You ...
#17. Call PHP Function from JavaScript - STechies
In this tutorial we aim to throw light on how to call PHP function from Javascript with ... <!doctype html> <html> <head> <meta charset="utf-8"> <title>PHP ...
#18. [請益] onclick 呼叫php function 疑惑之處 - 批踢踢實業坊
LPH66 :∣或執行含有PHP碼的∣ ∣HTML裡的Javascript∣ 08/10 16:28 ... 而直接呼叫function js可以但是我結合js會有問題沒辦法呼叫到function <html ...
#19. call php function from html Code Example
call javascript function from php. php by Kaotik on Mar 04 2020 ... //call the php divide function ... PHP answers related to “call php function from html”.
#20. Html Call Php Function | Contact Information Finder
Just Now Calling a PHP function using the HTML button: Create an HTML form document which contains the HTML button. When the button is clicked the method POST ...
#21. how to call php function in html button onclick code example
Button clicks are client side whereas PHP is executed server side, but you can achieve this by using Ajax: $('.button').click(function() { $.ajax({ type: ...
#22. 【PHP】6自訂函式-6.1 傳值呼叫及傳址呼叫 - KT客棧
PHP,MySQL,html,css. ... <?php //自訂函式-不帶參數 //函式內秀出文字,並呼叫 function welcome() { echo "KT客棧歡迎各位棧友的到來!
#23. python如何呼叫php檔案中的函數詳解 - IT145.com
前言 python呼叫php程式碼實現思路:php檔案可通過在terminal中使用php命令列進行呼叫,因此可使用python開啟子程序執行命令列程式碼。函數所.
#24. [Wordpress] 如何ajax來呼叫php function - 程式心得筆記工程屍 ...
記錄一下如何在wp操作ajax function呼叫php function,意思就是你可以透過hook機制寫自已的api嚕官網的sample說明action命名規則wp_ajax_[你的方法] ...
#25. 前端呼叫PHP函式的方式 - 程序員學院
前端呼叫PHP函式的方式,class rxzcb fl div 其中的se rvic e in trod ucti on是 ... 通過瀏覽. 器解析過. 的文件格. 式,就可. 以呼叫p. hp函式. html.
#26. JavaScript 呼叫PHP Function 問題- 藍色小舖BlueShop
使用者在Input輸入日期JavaScript即時取得輸入值再呼叫PHP function ... 107, <meta http-equiv="Content-Type" content="text/html; charset=Big5">.
#27. How to call a PHP function on the click of a button
You cannot call PHP functions like clicking on a button from HTML. Because HTML is on the client side while PHP runs server side.
#28. call a function in php - YouTube
in this video we will learn how to call a php function on button click. we need to make a html simple form and ...
#29. Call php function from JavaScript - Pretag
You can call PHP function through Javascript by passing the value, ... <html lang=en> <head> <meta charset=utf-8> <title>PHP Function in ...
#30. Jquery Ajax Call Php Function With Parameters - Pakainfo
php echo "pakainfo is angularjs tutorials"; ?> AJAX can be used very easy for very interactive to communication with a mysql database. index.html. <html> <head> ...
#31. Call php function in html - ConvertF.com
Get the best Call php function in html, download apps, download spk for Windows, Android, Iphone.
#32. [Solved] Call php function from JavaScript - Code Redirect
Is there a way I can run a php function through a JS function?something like this:<script ... We will put into the HTML element with the id output .
#33. Call PHP function on HTML <a onClick=""> help. - Reddit
Call PHP function on HTML <a onClick=""> help. I am designing a website for fun by following and using several JQuery, PHP/mySQL, and CSS tutorials.
#34. 在程式中呼叫控制器| Laravel 4 學習筆記
php namespace Controllers; use Controller; class HomeController extends Controller { public function postBussinessLogic($star = 5566) { // 一些程式邏輯... // ...
#35. 用PHP 寫一個簡易求職平台小作品結合JS 與PostgreSQL 資料 ...
PHP 基本上syntax 跟Javascript 很像,除了串接字串是用"." 以及Class 內的屬性與方法以"->" 方式呼叫外,其他地方並沒有太多困難。
#36. php類中方法之間引數怎麼呼叫 - 就問知識人
1樓:. class a. }function dosomething()方法的引數是新定義一個變數,注意是新定義,方法結束自動銷燬,2.php類中方法定義的引數與專呼叫時屬的引數 ...
#37. jqueryajaphp呼叫方法
jqueryajaphp呼叫方法,1樓day忘不掉的痛可以在jquery的ajax方法成功執行之後,執行相應的js 例如index html 頁面ajax php 處.
#38. 71. 網頁如何呼叫CGI 程式? - Jollen's PHP 專欄
呼叫 CGI 程式,可以透過HTML 的<form> 標籤,例如留言板程式:. <form method="POST" action="post.php"> <p>您的大名: <input type="text" name="username" ...
#39. c擴充套件呼叫php的函式 - w3c學習教程
c擴充套件呼叫php的函式,呼叫實現php函式的c函式今天來說下c擴充套件呼叫實現php函式的c函式,比方說, c擴充套件要用到php中ip2long 這.
#40. 5 Ways To Call PHP File From Javascript - Simple Examples
Use AJAX to call a PHP script. · Use the Fetch API to call a PHP script. · Redirect the current page to a PHP script. · Submit a hidden HTML form, ...
#41. call php function from image onclick? - CoddingBuddy
How to call PHP function on the click of a Button ?, Calling a PHP function using the HTML button: Create an HTML form document which input type = "submit" name ...
#42. Call the JS function in PHP before the database data load on ...
If you want to load the page before the data is loaded (from the server side) then you need to use AJAX. AJAX is typically a javaScript ...
#43. 【轉址方法】教你用HTML/Javascript/PHP自動重新導向
轉址方法有3種,HTML轉址、Javascript轉址及PHP轉址,網域名稱轉址也可稱為:URL redirection、網址重新導向或URL重定向。為何重新導向(301轉址)網頁 ...
#44. How can I call PHP functions by JavaScript - Edureka
I am trying to call a PHP function from an external PHP file into a JavaScript script. This is ... call the php divide function Any help?
#45. Call PHP Function from Laravel Blade View - Laracasts
I have an HTML Form in my Blade View and a Mail Function Setup in a php file (passing some parameters to this function will make an API call to SendGrid and ...
#46. Call PHP Function - Javascript Help
I have a php page tool.php that has a function named "create_event". ... DOCTYPE html> <html lang='en'> <head> <title>Example</title> <meta ...
#47. Call PHP function by Ajax - Digital Point Forum
How can I call PHP functions with Ajax? ... url: page, data: veri, error: function(html) { alert("Ajax hatası meydana geldi.
#48. Can I call PHP function by onclick inside the HTML Tag in echo?
category. PHP · HTML · MySql · Bootstrap · Array · JavaScript · CSS · jQuery · Nodejs · Laravel · Full Forms · node.js · arrays · typescript ...
#49. Call PHP function onClick HTML button - It_qna
I want to call a PHP function that I have on the same page, in the HTML button. My PHP function: if(isset($_POST['insert'])) { insert(); } ...
#50. How To Call Php Form Script In Same Html File
how can i write write this php code in html form and call it in same file , and what should be the action attribute if php code is present ...
#51. Call Php Function From Inside Page Content - CS-Cart Forum
Descriptions and other html editor-type content is used as data, not page source. To use as source would be highly insecure. Writing the same in ...
#52. [HTML, JavaScript] 事件onchange 呼叫多個function - 點部落
摘要:[HTML, JavaScript] 事件onchange 呼叫多個function. 昨天清晨再寫一個AJAX的功能時,遇到一個瓶頸,單一<select>標籤選擇出來後ID要供給下兩 ...
#53. OnChange call a PHP function? - WebDeveloper.com Forums
Test.php <html> <head> <title></title> <script type="text/javascript"> var d; function sendIt() { if (d) document.body.
#54. php傳址(呼叫參考)-PHP5網管實驗室@ 網頁程式- coke750101
傳值(call By Value) 2.傳址(call By Reference) 所謂的傳址指的是某一個記憶體的位址。 用意在於你可以設定一個變數,而設定很多個變數參考他, 而變數值改變, ...
#55. html 呼叫php 如何從
html html – 藉由PHP呼叫COM “InternetExplorer.Application”,但是有可以使用js ... 通過此變數動態呼叫函式下面是一個簡單的動態函式呼叫範例Dynamic Function Calls ...
#56. How to call php validation function using ajax - jquery - DaniWeb
I have a html form and a validation php file for the form, every thing works when a user submits the ...
#57. Using hyperlink to call php function - PHPBuilder Forums
Example code: <?php function myFunction() { echo 'The function ran successfully. ... <br> <a href="?run=0">Refresh No run</a> </body></html>.
#58. Fastest Html Call Php Function
Call php function onclick button in same page - Stack Overflow ... Create your own Web page that uses both HTML and PHP | Chegg.com.
#59. WordPress: Call PHP function with Javascript - Tschaki.com
Wordpress makes it possible: With Wordpress it is possible to execute PHP functions via Javascript or jQuery. If used correctly, all parameters and variables ...
#60. Question Call PHP function using HTML element - TitanWolf
it is possible to call PHP function using HTML element as call to JavaScript function, as <?php function fname() { code to be excuted } ?> ...
#61. Call PHP Function from tpl - Core developers - PrestaShop
I need to see one PHP function from one tpl, something like $link works ... false)|escape:'html':'UTF-8') but until now, I couldn't.
#62. Call php function in backend of module - Joomla Stack ...
I just tried doing that and got back a response with a bunch of html that appeared to be the basic module page for my module, but with no form fields or content ...
#63. Call php function with onclick event? - JavaScript
If user click on okay it has to call delete function. ... This is the HTML code with jQuery included and I've used test.php file in the same directory.
#64. How Call an PHP function in HTML pages of template? - phpBB
Hi, everyone! How can I call an PHP function in an place of HTML page from template? (overal_header.html, per example) :?
#65. 使用Ajax為HTML按鈕Onclick調用PHP函數 - 开发者知识库
I have a an HTML button where I want the onclick to call a PHP function. I need to use AJAX to do th.
#66. 網頁js呼叫php執行Python傳參不能有中文,有中文就報錯
網頁js呼叫php執行Python傳參不能有中文,有中文就報錯. ... exce("Python /var/www/html/SERVER/DATABASE/main.py $q",$out); Python代碼
#67. Button onClick call PHP function - unsere-schule.org
Wenn man mittels HTML Button eine PHP Funktion aufrufen möchte, muss man die Seite neu laden und einen Parameter mit übergeben. Hierzu gibt es von WordPress ...
#68. Call PHP function on Button click using jquery ajax | Code2care
How to call a php function from a html page when a button is being clicked using jQuery ajax function.
#69. Call a PHP function with uploadUrl property - jQWidgets
Otherwise: I call a PHP file with uploadUrl property but I need to return to the calling script a php variable and I don't know how do do it.
#70. Ajax call php function class - CodeRanch
Can someone help me with this code, i can't call my function from ajax. And this is my class function.
#71. How to call a PHP function in JavaScript? - Genera Codice
I have My question is how do I call the PHP function every time the user ... When the HTML fragment gets back to the JavaScript, you inject it into the page ...
#72. Variable functions - Manual - PHP
When calling static methods, the function call is stronger than the static property ... html. List of functions that accept variable arguments. <?php
#73. html呼叫php計數器 - 寰葛格的教學網站
須準備三個檔案:test.html、count.php3、counter.txt test.html是內容… ... html呼叫php計數器 ... function show(){
#74. How to link External PHP file to HTML. - Code Leaks
As we know that HTML and PHP are distinct languages, and we cannot ... that is present in a given file and copies that into a file that calls this function.
#75. HTML link to call PHP function
I have a PHP file that dynamically creates some HTML links. When one of the links is clicked, I would like to call a PHP function that lives in ...
#76. how to call js function from php Code Example
The most basic method <?php echo '<script type=" ... echo divide(1,2);?> //call the php divide function </script>.
#77. [jQuery] jQuery + call PHP function
I'm wondering how can I asynchronously call the php function which is placed in the same file as the js code and html (just on the top of it ...
#78. Call php function within Javascript - Moodle in English
I would call this function1 (contained in quiz_session.php) whithin a javascript setInterval() function in order to update an HTML element ...
#79. How to call php function on a form button using javascript
I have a php function that does the database stuff for each button action but I need to know how I would call that function depending on ...
#80. Cisco Webex: 視像會議、線上會議、螢幕分享
Cisco Webex 是適用於視像會議、線上會議、屏幕分享及網路研討會的領先企業解決方案。網路會議、雲端呼叫及設備。
#81. View topic - How to call PHP functions in smarty?
http://www.smarty.net/manual/en/language.function.html.options.php ... Use custom functions and modifiers to call PHP code.
#82. Blade Templates - Laravel - The PHP Framework For Web ...
By default, Blade (and the Laravel e helper) will double encode HTML entities. If you would like to disable double encoding, call ...
#83. JavaScript Function call() - W3Schools
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, ...
#84. call php function in html button - C# Corner
hai , how to call php function in from html button in same page . This is my code but is not working FromDate : ToDate : Submit client_name ...
#85. javascript:使用onclick執行PHP函式 - Codebug
我正在尋找一種稱為的簡單解決方案 只有当 單击。 html和PHP代碼在同一个.
#86. How to call PHP function from HTML button - CollectiveSolver
PHP if ( isset($_GET[\'function\']) ) { call_user_func($_GET[\'function\']); } function set_words() { echo \"set_words() function\"; ...
#87. 面試官:什麼是函式柯里化?能手寫實現嗎? | IT人
這是一個接受3個引數的函式 const add = function(x, y, z) { return x + y + z } ... 呼叫add add(1, 2, 3) // 呼叫curryingAdd curryingAdd(1)(2, ...
#88. PHP - Wikipedia
On a web server, the result of the interpreted and executed PHP code – which may be any type of data, such as generated HTML or binary image data – would ...
#89. Functions — reusable blocks of code - Learn web development
Programmers call functions that are part of objects methods. ... In our random-canvas-circles.html example (see also the full source code) ...
#90. Calling a remote PHP Script from JavaScript using JQuery
In this tutorial I will show you how to call a remote PHP script (a script ... There are many reasons for calling remote scripts and functions, for example:.
#91. Functions | PHP | Mike Dane
We follow the Function name with a set of open and closed parenthesis, and then below the top line (which we call the Function declaration), ...
#92. html按钮调用php函数,如何在html按钮上执行php函数点击
bb1.html:包含使用Ajax调用PHP函数的按钮。 function myAjax() {. $.ajax({ type : 'POST',. data : { },. url : 'bb2.php', // <=== CALL THE PHP ...
#93. 使用PHP表單提交導航
這就是問題,我正在使用HTML表單在頁面之間傳遞變量,並使用PHP腳本根據提交的值創建頁面。總的來說,它看起來像這樣:從商品目錄中...
#94. Overview | Maps JavaScript API | Google Developers
To load the Maps JavaScript API inline in an HTML file, add a script tag as ... When the script is executed, it will call the function specified using the ...
#95. Besrnqe.php?ldlvx - Il teatro dei sogni
How to call PHP function on the click of a Button ? How to pop an alert message box using PHP ... PHP can be added to straight HTML or it can be used with.
#96. call php function with arguments using Jquery
“call php function from html” Code Answer's. Related Articles Your comment on this question: it is just a first step. This isn't always the case ...
#97. PHP 7&MySQL網站開發--超威範例集(第三版)(電子書)
01:<?php 02: header("Content-type: text/html; charset=utf-8"); ... 13: } 14:?> * 02:呼叫 header()函式傳送自訂的 HTTP Header,將網頁的編碼方式設定為 UTF-8。
#98. 精通 PHP&MySQL 網頁開發 第五版(電子書)
製作基本網站我們要建立的第一個網頁稱為 login.php,因為它可讓使用者登入系統。 ... 一個檔案(含有函式),接著呼叫一些函式來顯示 HTML 頁首、一些內容,與 HTML 頁尾。
#99. Making Use of PHP - 第 83 頁 - Google 圖書結果
In PHP, you can call functions dynamically. ... The output of the code is: X-Powered-By: PHP/4.0.6 Content-type: text/html 9 As is evident from the output, ...
#100. Question call php function from HTML string - Katastros
I'm facing a problem to call PHP function from html code and fill arguments of function. After that the HTML code is output with returned values of ...
html 呼叫php function 在 [請益] onclick 呼叫php function 疑惑之處 - 批踢踢實業坊 的推薦與評價
※ 引述《sos0214 (kaleidoscope)》之銘言:
: 請問一下onclick不能呼叫php的function嗎
: 找了找好像只有javascript
: 不過我讀寫檔用php,所以想找一下
那請問一下 PHP是否沒有其他方法可以解決了??
我想用BUTTON案一下 某數就+1
我也是想到onclick 的方式
是不是還有其他的解決方式呢?
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 61.220.30.237
那也是配合js去寫嗎??
可是我function裡 有牽涉到PHP的運算 那是要如何寫!!?
把運算的部份用<? ?>框起來??
※ 編輯: claire0810 來自: 61.220.30.237 (08/10 15:32)
是在同一個網頁
(一個簡單的萬年曆的程式)
我希望他案一下button就可以+一年
※ 編輯: claire0810 來自: 61.220.30.237 (08/10 15:40)
嗯....
我想問的是 不透過post或get 而直接呼叫function
js可以 但是我結合js會有問題 沒辦法呼叫到function
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文件</title>
</head>
<body>
<div align="center">
<?php
$YMD=$_REQUEST["d"];
// 秀當天的資料, 將來可以配合資料庫使用
function _ShowDay1($Y,$M,$D)
{
echo $D;
}
function _ShowDay($Y,$M,$D,$YMD)
{
if($YMD==mktime(0,0,0,$M,$D,$Y))
{
echo "<font color=#FF1122>";
_ShowDay1($Y,$M,$D);
echo "</font>";
}
else
{
_ShowDay1($Y,$M,$D);
}
}
if($YMD=="")
$Now=getdate(); // 今天
else
$Now=getdate(mktime(0,0,0,substr($YMD,4,2),substr($YMD,6,2),substr($YMD,0,4)));
$Y=$Now[year];//年
$M=$Now[mon];//月
$D=$Now[mday];//日
$Today=mktime(0,0,0,$M,$D,$Y);
$WeekOf1stDay=(8-(($D-$Now[wday])%7))%7; // 當月的第一天是星期幾(月歷上,第一
天是從第幾格開始)?
$MaxDay=(mktime(0,0,0,$M+1,1,$Y)-mktime(0,0,0,$M,1,$Y))/60/60/24; // 當月有幾
天?
$NoDays=($MaxDay+$WeekOf1stDay)%7; // 月歷上,第幾天之後是空白?
$WeekLine=($MaxDay+$WeekOf1stDay+(7-$NoDays))/7; // 月歷上,一共占幾層?
?>
</div>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=big5">
<div align="center">
<HEAD>
</div>
<TITLE>
<div align="center">Calendar</div>
</TITLE>
<div align="center">
</HEAD>
<BODY>
<table border=1>
<tr>
<td colspan="7">
<div align="center">
<?php
echo "<input type=button value='<<' onClick=cleck_data() >".$Y."年<input
type=button value='>>'><br/>";
echo "<input type=button value='<<'>".$M."月<input type=button
value='>>'><br/>";
?>
</div></td>
</tr>
<tr>
<td><font color=#AA0000>星期日</font></td>
<td>星期一</td>
<td>星期二</td>
<td>星期三</td>
<td>星期四</td>
<td>星期五</td>
<td><font color=#007700>星期六</font></td>
</tr>
<?php
for($i=0;$i<$WeekOf1stDay;$i++)
{
echo "\n <td> </td>";
}
$DD=1;
for($i=$WeekOf1stDay;$i<7;$i++)
{
// echo "\n <td>".$DD."</td>";
echo "\n <td>";
_ShowDay($Y,$M,$DD,$Today);
echo "</td>";
$DD++;
}
echo "</tr>";
for($j=2;$j<$WeekLine;$j++)
{
echo "\n <tr>";
for($i=0;$i<=6;$i++)
{
// echo "\n <td>".$DD."</td>";
echo "\n <td>";
_ShowDay($Y,$M,$DD,$Today);
echo "</td>";
$DD++;
}
echo "</tr>";
}
echo "\n <tr>";
for($i=0;$i<$NoDays;$i++)
{
// echo "\n <td>".$DD."</td>";
echo "\n <td>";
_ShowDay($Y,$M,$DD,$Today);
echo "</td>";
$DD++;
}
for($i=$NoDays;$i<7;$i++)
{
echo "\n <td> </td>";
}
echo "</tr>\n";
?>
</table>
</div>
</BODY>
</body>
</html>
點選<< 或者>> 的button 則年份+1
如果我post出去 就不一樣了....
※ 編輯: claire0810 來自: 61.220.30.237 (08/10 16:34)
... <看更多>